home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Tele / C / Comet2.1.3.cpt / include / 3270vars.h < prev    next >
Text File  |  1990-06-13  |  1KB  |  42 lines

  1. /*
  2.     Copyright Cornell University 1986.  All rights are reserved.
  3.     3270vars.h -- assorted variable declarations for 3270 
  4. */
  5. #ifndef    _3270VAR
  6.  
  7. #define _3270VAR
  8.  
  9. #include <stdio.h>
  10. #include <types.h>
  11. #include <timer.h>
  12.  
  13. /* structure definitions */
  14.  
  15. extern unsigned long getmya5();        /* returns old a5, sets our a5 global data * */
  16.  
  17. extern unsigned char ebctoasc[];        /* pointer to array containing EBCDIC chars     */
  18. extern unsigned char asctoebc[];        /* pointer to array containing ASCII chars         */
  19.  
  20.  
  21. /* various macintosh emulator vars and flags */
  22.  
  23. extern short mousecurson;                /* is the mouse cursor hidden? */
  24. extern short modaldialog;                /* is a modaldialog active outside the Mac task?  skip event loop! */
  25. extern long creator;                    /* creator for file info */
  26.  
  27. extern short mfbackground;                /* we're in the background under MultiFinder */                        
  28.  
  29. extern short iplog;                        /* enable logging of IP packets UNUSED */
  30. extern unsigned long cticks;            /* current # of ticks elapsed */
  31. extern unsigned long tickcursor;        /* next tick count to service cursor */
  32. extern unsigned long tickstats;            /* next tick count to display packet counters */
  33.  
  34. extern char * copyerr;
  35. extern short mfpresent;                    /* we're under MultiFinder */                        
  36.  
  37. extern unsigned char realattr;            /* mask for relevant attributes */
  38.  
  39. extern long gettextscrap();
  40. extern long memtest();                    /* forward declaration */
  41. #endif
  42.